home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / mainmenu.dxr / Internal_1_display the badge type.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  412 b   |  19 lines

  1. property psp_mysprite
  2. global gsp_iconsprite
  3.  
  4. on beginSprite me
  5.   psp_mysprite = sprite(me.spriteNum)
  6.   gsp_iconsprite = psp_mysprite
  7. end
  8.  
  9. on changeicon me, whichicon
  10.   if whichicon = EMPTY then
  11.     whichicon = "NO_box"
  12.   end if
  13.   psp_mysprite.member = whichicon
  14. end
  15.  
  16. on getPropertyDescriptionList me
  17.   return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
  18. end
  19.